Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
17 lines (8 loc) · 470 Bytes

10.15 - Process->exit.md

File metadata and controls

17 lines (8 loc) · 470 Bytes

Process->exit

退出子进程

int Process->exit(int $status=0);

$status是退出进程的状态码,如果为0表示正常结束,会继续执行PHPshutdown_function,其他扩展的清理工作。

如果$status不为0,表示异常退出,会立即终止进程。不再执行PHPshutdown_function,其他扩展的清理工作。

在父进程中,执行Process::wait可以得到子进程退出的事件和状态码。